Conversation
This was referenced May 17, 2026
This was referenced May 18, 2026
vgmello
pushed a commit
to vgmello/momentum
that referenced
this pull request
May 19, 2026
[//]: # (dependabot-start)⚠️ **Dependabot is rebasing this PR**⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Updated [Dapper](https://github.com/DapperLib/Dapper) from 2.1.72 to 2.1.79. <details> <summary>Release notes</summary> _Sourced from [Dapper's releases](https://github.com/DapperLib/Dapper/releases)._ ## 2.1.79 ## What's Changed * fix CI by @mgravell in DapperLib/Dapper#2196 * Fix segfault when ICustomQueryParameter is a value type (#2189) by @andreasblueher in DapperLib/Dapper#2198 * Update dependencies by @mgravell in DapperLib/Dapper#2202 * Make private & internal classes sealed and less enumeration of lists & LINQ by @Henr1k80 in DapperLib/Dapper#2197 * Fix/prefer typehandlers for enums by @andreasblueher in DapperLib/Dapper#2200 * keep deps up to date by @mgravell in DapperLib/Dapper#2204 * Add ReferenceTrimmer and remove unused references by @dfederm in DapperLib/Dapper#2191 ## New Contributors * @andreasblueher made their first contribution in DapperLib/Dapper#2198 * @Henr1k80 made their first contribution in DapperLib/Dapper#2197 * @dfederm made their first contribution in DapperLib/Dapper#2191 **Full Changelog**: DapperLib/Dapper@2.1.72...2.1.79 Commits viewable in [compare view](DapperLib/Dapper@2.1.72...2.1.79). </details> Updated [linq2db](https://github.com/linq2db/linq2db) from 6.2.1 to 6.3.0. <details> <summary>Release notes</summary> _Sourced from [linq2db's releases](https://github.com/linq2db/linq2db/releases)._ ## 6.3.0 Highlights of this release: - `Enum.HasFlag` translation - `string.Concat` / `string.Join` / `TrimStart` / `TrimEnd` translation improvements (with many translator-bug fixes uncovered along the way) - `AsCte` builder overload for explicit CTE materialization configuration (PostgreSQL, ClickHouse, DuckDB, SQLite, DuckDB) - `AsQueryable(db, ...)` overload with per-column parameterization control for `VALUES` clauses - Improved `Now` / `UtcNow` translation with timezone awareness across providers; providers without TZ gracefully downgrade - `IgnoreConflicts` option for `MultipleRows` mode `BulkCopy` on MySql / MariaDB / PostgreSQL / SQLite / DuckDB (thanks @darko1979) - Many other fixes: PostgreSQL array-parameter query cache misses, `SqlQueryDependentParams` issues, association discovery on interfaces, subquery null-aggregate SQL generation, `UPDATE FROM` regressions, `ValueConverter` null handling, CTE column removal, set-operator flattening, `Sql.Row` converters, predicate null-check optimization, `FromSql` caching, `DropTable(throwExceptionIfNotExists: false)` behavior, `EXISTS` over set queries Provider-specific highlights: - **DuckDB** — brand-new first-class provider (thanks @stdray, #5451), schema introspection, scaffolding via `linq2db.cli`, LINQPad support - **Oracle** — `COALESCE` parameter type inference, `DateTimeOffset.Now` no longer corrupts `TIMESTAMP WITH TIME ZONE` writes, drop of global temp tables with data now works - **SQL Server 2025** — vector type fixes - **SQL Server** + **Firebird** — date conversion fix for `DbType="..."` mappings - **ClickHouse** — table-hint whitespace fix - **Access** — non-EN locale compatibility re-fixes - **SAP HANA** + **DB2** + **Firebird** — proper SQL escaping in `EXECUTE` blocks for create/drop tables - **SAP HANA** — `DROP TABLE IF NOT EXISTS` handled on SQL level - **EF.Core / SQL Server** — `UseSequence`-defined fields now detected as identity (#5439) - **F# support** — compatibility with `FSharp.Core` 10.1.x; record mapping fixes for case-only-distinct member names linq2db.cli: - **Per-RID tool packaging.** `linq2db.cli` now ships as per-RID tool packages (`win-x64`/`win-x86`/`win-arm64`/`linux-x64`/`linux-arm64`/`osx-arm64`/`osx-x64`). `dotnet tool install -g linq2db.cli` auto-picks the variant for your SDK; add `--arch x86` when you need 32-bit (Jet OLE DB; or to match a 32-bit ACE / SqlCe / SAP HANA driver). - **Breaking:** `--architecture` scaffold option removed — bitness is now fixed at install time. Jet connection strings on a 64-bit process now fail fast with a clear x86-variant hint. See #5539. [Full release notes](https://github.com/linq2db/linq2db/wiki/releases-and-roadmap#release-630) [Nugets](https://www.nuget.org/profiles/LinqToDB) ## What's Changed * Release 6.2.1 by @MaceWindu in linq2db/linq2db#5426 * Fix compatibility with FSharp.Core 10.1.x by @MaceWindu in linq2db/linq2db#5430 * Fixed a StackOverflowException when using chained AsQueryable() calls. by @sdanyliv in linq2db/linq2db#5433 * IgnoreConflicts option in BulkCopyOptions for MySql/MariaDB, PostgreSQL and SQLite by @darko1979 in linq2db/linq2db#5395 * Relaxed restriction for Sql.Row and fields with conversion. by @sdanyliv in linq2db/linq2db#5438 * Add JetBrains support section to README by @sdanyliv in linq2db/linq2db#5448 * Initial setup for Claude code by @MaceWindu in linq2db/linq2db#5452 * Wrapped key in LINQ Query by @sdanyliv in linq2db/linq2db#5456 * Disabled Clickhouse.Octonica provider tests. by @sdanyliv in linq2db/linq2db#5460 * Fix null checks optimization for parameterized predicates (#5445) by @sdanyliv in linq2db/linq2db#5464 * Fix CTE columns incorrectly removed by optimizer by @sdanyliv in linq2db/linq2db#5462 * Fix WHERE clause lost during nested UNION ALL flattening by @sdanyliv in linq2db/linq2db#5465 * Fix UnionAll + string member access (.Length, IsNullOrEmpty) by @jogibear9988 in linq2db/linq2db#5459 * Fix PostgreSQL array parameter query cache misses by @sdanyliv in linq2db/linq2db#5470 * Fix type construction (post-merge quic fix) by @MaceWindu in linq2db/linq2db#5471 * Bump versions for 6.3.0 release by @MaceWindu in linq2db/linq2db#5474 * Fix build issues by @viceroypenguin in linq2db/linq2db#5472 ... (truncated) Commits viewable in [compare view](linq2db/linq2db@v6.2.1...v6.3.0). </details> Updated [linq2db.Extensions](https://github.com/linq2db/linq2db) from 6.2.1 to 6.3.0. <details> <summary>Release notes</summary> _Sourced from [linq2db.Extensions's releases](https://github.com/linq2db/linq2db/releases)._ ## 6.3.0 Highlights of this release: - `Enum.HasFlag` translation - `string.Concat` / `string.Join` / `TrimStart` / `TrimEnd` translation improvements (with many translator-bug fixes uncovered along the way) - `AsCte` builder overload for explicit CTE materialization configuration (PostgreSQL, ClickHouse, DuckDB, SQLite, DuckDB) - `AsQueryable(db, ...)` overload with per-column parameterization control for `VALUES` clauses - Improved `Now` / `UtcNow` translation with timezone awareness across providers; providers without TZ gracefully downgrade - `IgnoreConflicts` option for `MultipleRows` mode `BulkCopy` on MySql / MariaDB / PostgreSQL / SQLite / DuckDB (thanks @darko1979) - Many other fixes: PostgreSQL array-parameter query cache misses, `SqlQueryDependentParams` issues, association discovery on interfaces, subquery null-aggregate SQL generation, `UPDATE FROM` regressions, `ValueConverter` null handling, CTE column removal, set-operator flattening, `Sql.Row` converters, predicate null-check optimization, `FromSql` caching, `DropTable(throwExceptionIfNotExists: false)` behavior, `EXISTS` over set queries Provider-specific highlights: - **DuckDB** — brand-new first-class provider (thanks @stdray, #5451), schema introspection, scaffolding via `linq2db.cli`, LINQPad support - **Oracle** — `COALESCE` parameter type inference, `DateTimeOffset.Now` no longer corrupts `TIMESTAMP WITH TIME ZONE` writes, drop of global temp tables with data now works - **SQL Server 2025** — vector type fixes - **SQL Server** + **Firebird** — date conversion fix for `DbType="..."` mappings - **ClickHouse** — table-hint whitespace fix - **Access** — non-EN locale compatibility re-fixes - **SAP HANA** + **DB2** + **Firebird** — proper SQL escaping in `EXECUTE` blocks for create/drop tables - **SAP HANA** — `DROP TABLE IF NOT EXISTS` handled on SQL level - **EF.Core / SQL Server** — `UseSequence`-defined fields now detected as identity (#5439) - **F# support** — compatibility with `FSharp.Core` 10.1.x; record mapping fixes for case-only-distinct member names linq2db.cli: - **Per-RID tool packaging.** `linq2db.cli` now ships as per-RID tool packages (`win-x64`/`win-x86`/`win-arm64`/`linux-x64`/`linux-arm64`/`osx-arm64`/`osx-x64`). `dotnet tool install -g linq2db.cli` auto-picks the variant for your SDK; add `--arch x86` when you need 32-bit (Jet OLE DB; or to match a 32-bit ACE / SqlCe / SAP HANA driver). - **Breaking:** `--architecture` scaffold option removed — bitness is now fixed at install time. Jet connection strings on a 64-bit process now fail fast with a clear x86-variant hint. See #5539. [Full release notes](https://github.com/linq2db/linq2db/wiki/releases-and-roadmap#release-630) [Nugets](https://www.nuget.org/profiles/LinqToDB) ## What's Changed * Release 6.2.1 by @MaceWindu in linq2db/linq2db#5426 * Fix compatibility with FSharp.Core 10.1.x by @MaceWindu in linq2db/linq2db#5430 * Fixed a StackOverflowException when using chained AsQueryable() calls. by @sdanyliv in linq2db/linq2db#5433 * IgnoreConflicts option in BulkCopyOptions for MySql/MariaDB, PostgreSQL and SQLite by @darko1979 in linq2db/linq2db#5395 * Relaxed restriction for Sql.Row and fields with conversion. by @sdanyliv in linq2db/linq2db#5438 * Add JetBrains support section to README by @sdanyliv in linq2db/linq2db#5448 * Initial setup for Claude code by @MaceWindu in linq2db/linq2db#5452 * Wrapped key in LINQ Query by @sdanyliv in linq2db/linq2db#5456 * Disabled Clickhouse.Octonica provider tests. by @sdanyliv in linq2db/linq2db#5460 * Fix null checks optimization for parameterized predicates (#5445) by @sdanyliv in linq2db/linq2db#5464 * Fix CTE columns incorrectly removed by optimizer by @sdanyliv in linq2db/linq2db#5462 * Fix WHERE clause lost during nested UNION ALL flattening by @sdanyliv in linq2db/linq2db#5465 * Fix UnionAll + string member access (.Length, IsNullOrEmpty) by @jogibear9988 in linq2db/linq2db#5459 * Fix PostgreSQL array parameter query cache misses by @sdanyliv in linq2db/linq2db#5470 * Fix type construction (post-merge quic fix) by @MaceWindu in linq2db/linq2db#5471 * Bump versions for 6.3.0 release by @MaceWindu in linq2db/linq2db#5474 * Fix build issues by @viceroypenguin in linq2db/linq2db#5472 ... (truncated) Commits viewable in [compare view](linq2db/linq2db@v6.2.1...v6.3.0). </details> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This was referenced May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Mostly to tests, etc